home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_13_05
/
allison
/
date3.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-03-12
|
266b
|
18 lines
LISTING 7 The Date type in C++
// date3.h
struct Date
{
Date(int, int, int);
char *format(char *) const;
int compare(const Date &) const;
private:
int month;
int day;
int year;
static const char * month_text[13];
};